remove the outline from bootstrap input and input fields

91

<div class="form-label-group">
  <input type="password" id="inputPassword" class="form-control shadow-none" placeholder="Password" required>
  <label for="inputPassword">Password</label>
</div>
input {
    border: 1;
    outline: none;
}

Comments

Submit
0 Comments